ANU BDSIworkshop Reproducible research with Quarto
Biological Data Science Institute
12th April 2024
```{r} #| label: fig-plot #| eval: true #| echo: true #| fig-width: 4 #| fig-height: 4 #| fig-cap: "A scatter plot of speed and distance." library(ggplot2) ggplot(cars, aes(speed, dist)) + geom_point() ```
python
```{python} 2 * 2 + 3 ```
7
julia
```{julia} 3 + 3 ```
6
engine: knitr